home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / redhat-RHSA-2004-033.nasl < prev    next >
Text File  |  2005-01-14  |  3KB  |  95 lines

  1. #
  2. # (C) Tenable Network Security
  3. #
  4. #
  5. # The text of this plugin is (C) Red Hat Inc.
  6.  
  7. if ( ! defined_func("bn_random") ) exit(0);
  8. if(description)
  9. {
  10.  script_id(12455);
  11.  script_version ("$Revision: 1.3 $");
  12.  script_cve_id("CAN-2004-0006", "CAN-2004-0007", "CAN-2004-0008");
  13.  
  14.  name["english"] = "RHSA-2004-033: gaim";
  15.  
  16.  script_name(english:name["english"]);
  17.  
  18.  desc["english"] = '
  19.  
  20.   Updated Gaim packages that fix a number of serious vulnerabilities are now
  21.   available.
  22.  
  23.   Gaim is an instant messenger client that can handle multiple protocols.
  24.  
  25.   Stefan Esser audited the Gaim source code and found a number of bugs that
  26.   have security implications. Due to the nature of instant messaging many of
  27.   these bugs require man-in-the-middle attacks between client and server.
  28.   However at least one of the buffer overflows could be exploited by an
  29.   attacker sending a carefully-constructed malicious message through a
  30.   server.
  31.  
  32.   The issues include:
  33.  
  34.   Multiple buffer overflows that affect versions of Gaim 0.75 and earlier.
  35.   1) When parsing cookies in a Yahoo web connection, 2) YMSG protocol
  36.   overflows parsing the Yahoo login webpage, 3) a YMSG packet overflow, 4)
  37.   flaws in the URL parser, and 5) flaws in HTTP Proxy connect. The Common
  38.   Vulnerabilities and Exposures project (cve.mitre.org) has assigned the name
  39.   CAN-2004-0006 to these issues.
  40.  
  41.   A buffer overflow in Gaim 0.74 and earlier in the Extract Info
  42.   Field Function used for MSN and YMSG protocol handlers. The Common
  43.   Vulnerabilities and Exposures project (cve.mitre.org) has
  44.   assigned the name CAN-2004-0007 to this issue.
  45.  
  46.   An integer overflow in Gaim 0.74 and earlier, when allocating
  47.   memory for a directIM packet results in heap overflow.
  48.   The Common Vulnerabilities and Exposures project (cve.mitre.org) has
  49.   assigned the name CAN-2004-0008 to this issue.
  50.  
  51.   All users of Gaim should upgrade to these erratum packages, which contain
  52.   backported security patches correcting these issues.
  53.  
  54.   Red Hat would like to thank Steffan Esser for finding and reporting these
  55.   issues and Jacques A. Vidrine for providing initial patches.
  56.  
  57.  
  58.  
  59.  
  60. Solution : http://rhn.redhat.com/errata/RHSA-2004-033.html
  61. Risk factor : High';
  62.  
  63.  script_description(english:desc["english"]);
  64.  
  65.  summary["english"] = "Check for the version of the gaim packages";
  66.  script_summary(english:summary["english"]);
  67.  
  68.  script_category(ACT_GATHER_INFO);
  69.  
  70.  script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
  71.  family["english"] = "Red Hat Local Security Checks";
  72.  script_family(english:family["english"]);
  73.  
  74.  script_dependencies("ssh_get_info.nasl");
  75.  
  76.  script_require_keys("Host/RedHat/rpm-list");
  77.  exit(0);
  78. }
  79.  
  80. include("rpm.inc");
  81. if ( rpm_check( reference:"gaim-0.75-3.2.0", release:"RHEL3") )
  82. {
  83.  security_hole(0);
  84.  exit(0);
  85. }
  86.  
  87. if ( rpm_exists(rpm:"gaim-", release:"RHEL3") )
  88. {
  89.  set_kb_item(name:"CAN-2004-0006", value:TRUE);
  90.  set_kb_item(name:"CAN-2004-0007", value:TRUE);
  91.  set_kb_item(name:"CAN-2004-0008", value:TRUE);
  92. }
  93.  
  94. set_kb_item(name:"RHSA-2004-033", value:TRUE);
  95.